summaryrefslogtreecommitdiff
path: root/app/[lng]/partners/(partners)/po/page.tsx
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-08-26 12:09:39 +0000
committerjoonhoekim <26rote@gmail.com>2025-08-26 12:09:39 +0000
commit1110427907bbe9c11a378da4c1a233b83b5ca3b1 (patch)
tree8bd7ed2ce7ec47a7f05693f5d3afcc22b1bb7e19 /app/[lng]/partners/(partners)/po/page.tsx
parent5f479f7252a7aa3328bfe186893de8b011e21b15 (diff)
(김준회) 구매정의서 구현 - PO (shi & vendor)
Diffstat (limited to 'app/[lng]/partners/(partners)/po/page.tsx')
-rw-r--r--app/[lng]/partners/(partners)/po/page.tsx76
1 files changed, 76 insertions, 0 deletions
diff --git a/app/[lng]/partners/(partners)/po/page.tsx b/app/[lng]/partners/(partners)/po/page.tsx
new file mode 100644
index 00000000..ebe7601e
--- /dev/null
+++ b/app/[lng]/partners/(partners)/po/page.tsx
@@ -0,0 +1,76 @@
+import * as React from "react"
+import { type SearchParams } from "@/types/table"
+import { getServerSession } from "next-auth/next"
+import { authOptions } from "@/app/api/auth/[...nextauth]/route"
+import { redirect } from "next/navigation"
+
+import { getValidFilters } from "@/lib/data-table"
+import { Skeleton } from "@/components/ui/skeleton"
+import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
+import { Shell } from "@/components/shell"
+import { getVendorPOs } from "@/lib/po/vendor-table/service"
+import { vendorPoSearchParamsCache } from "@/lib/po/vendor-table/validations"
+import { VendorPoTable } from "@/lib/po/vendor-table/vendor-po-table"
+import { InformationButton } from "@/components/information/information-button"
+
+interface VendorPOPageProps {
+ searchParams: Promise<SearchParams>
+}
+
+export default async function VendorPO(props: VendorPOPageProps) {
+ const searchParams = await props.searchParams
+ const search = vendorPoSearchParamsCache.parse(searchParams)
+
+ // 세션에서 벤더 정보 가져오기
+ const session = await getServerSession(authOptions)
+ if (!session?.user?.companyId) {
+ return (
+ <div className="flex h-full items-center justify-center p-6">
+ 정상적인 벤더에 소속된 계정이 아닙니다.
+ </div>
+ )
+ }
+
+ const validFilters = getValidFilters(search.filters)
+
+ const promises = Promise.all([
+ getVendorPOs({
+ ...search,
+ filters: validFilters,
+ vendorId: session.user.companyId, // 벤더 필터링 적용
+ }),
+ ])
+
+ return (
+ <Shell className="gap-2">
+ <div className="flex items-center justify-between space-y-2">
+ <div className="flex items-center justify-between space-y-2">
+ <div>
+ <div className="flex items-center gap-2">
+ <h2 className="text-2xl font-bold tracking-tight">
+ 벤더 PO 관리
+ </h2>
+ <InformationButton pagePath="partners/po" />
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <React.Suspense fallback={<Skeleton className="h-7 w-52" />}>
+ </React.Suspense>
+ <React.Suspense
+ fallback={
+ <DataTableSkeleton
+ columnCount={8}
+ searchableColumnCount={1}
+ filterableColumnCount={3}
+ cellWidths={["10rem", "15rem", "12rem", "10rem", "12rem", "10rem", "10rem", "8rem"]}
+ shrinkZero
+ />
+ }
+ >
+ <VendorPoTable promises={promises} />
+ </React.Suspense>
+ </Shell>
+ )
+} \ No newline at end of file